home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ Windows Version.xpl
< prev
next >
Wrap
Text File
|
2003-10-29
|
1KB
|
41 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="9"
"COUNT"="1"
"UIPATH"="Information\Core"
"NAME"="Windows Version"
"VERSION"="2.05"
"LANGUAGE"="VBScript"
"TEXT 1"="na na"
"DESCRIPTION 1"="This plug-in shows which OS you are running (very useful, isn't it?)"
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
'Called when the Plugin is started
Sub Plugin_Initialize
Call SetUIElement(1,"1) Windows 95 (Win95)")
Call SetUIElement(2,"2) Windows NT (WinNT)")
Call SetUIElement(3,"3) Windows 98 (Win98)")
Call SetUIElement(4,"4) Windows 2000 (Win2K)")
Call SetUIElement(5,"5) Windows Millennium (WinME)")
Call SetUIElement(6,"6) Windows XP (WinXP)")
Call SetUIElement(7,"7) Windows 2003 (Win2k3)")
i=GetWinVer
Call SetUIElementEx(i,True)
Call Disable()
End Sub
'Called when the Plugin should validate the Data the user has entered
Sub Plugin_CheckData(ElementIndex)
End Sub
'Called when the Plugin should apply the changes
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
End Sub
'Called when the Plugin is about to be removed from memory
Sub Plugin_Terminate
End Sub